def add(a, b):
    return a + b


add(5,  7)

add(3.1, 2.4)

add("news",  "paper")

add([1,  6],  [21,  107])

add("The answer is", 42) 